home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_PolishedStone_Custom_1 < prev    next >
Encoding:
Text File  |  2003-04-22  |  653 b   |  27 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'PSP 7 Preset Converter',
  6.         'Copyright': '',
  7.         'Description': 'Custom 2 PolishedStone preset',
  8.         'Host': 'Paint Shop Pro 8',
  9.         'Host Version': '8.00',
  10.     }
  11.  
  12. def Preset_PolishedStone():
  13.     return {
  14.         'GeneralSettings': {
  15.             'AutoActionMode': 0,
  16.             'ExecutionMode': 0
  17.             },
  18.         'Polishing': 19,
  19.         'Color': (84, 58, 18),
  20.         'Angle': 313,
  21.         'Detail': 200,
  22.         'Blur': 40,
  23.         }
  24.  
  25. def Do(Environment):
  26.     App.Do(Environment, 'PolishedStone', Preset_PolishedStone())
  27.